home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Ver Disp 1.xpl
< prev
next >
Wrap
Text File
|
2001-01-21
|
2KB
|
77 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="1"
"COUNT"="5"
"UIPATH"="Information\Core"
"NAME"="Windows 9x/ME System Info"
"OSVERSION"="10101"
"VERSION"="1.25"
"LANGUAGE"="VBScript"
"TEXT 1"="Windows Version"
"TEXT 2"="Sub Version"
"TEXT 3"="Plus!/IE Version"
"TEXT 4"="Product ID"
"TEXT 5"="Product Key"
"DESCRIPTION 1"="This plug-in displays some of the internal Windows 9x/ME information."
"DESCRIPTION 2"="You can't change anything!!!"
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Thanks to CptSiskoX for his help!"
sP="HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\"
sV1="VersionNumber"
sV2="SubVersionNumber"
sV3="Plus! VersionNumber"
sV4="ProductId"
sV5="ProductKey"
sCheckPlus="HKLM\Software\Microsoft\Plus!98\Setup\Installed"
Sub Plugin_Initialize
if GetWinVer=1 or GetWinVer=3 or GetWinVer=5 then
s=RegReadValue(sP & sV1)
Call SetUIElement(1,s)
s=RegReadValue(sP & sV2)
Call SetUIElement(2,s)
s=RegReadValue(sP & sV3)
Call SetUIElement(3,s)
s=RegReadValue(sP & sV4)
Call SetUIElement(4,s)
s=RegReadValue(sP & sV5)
Call SetUIElement(5,s)
s=RegReadValue(sCheckPlus)
If s<>"1" then
Call SetUIElement(3,"Not installed")
end if
else
Call SetUIElement(1,"N/A")
Call SetUIElement(2,"N/A")
Call SetUIElement(3,"N/A")
Call SetUIElement(4,"N/A")
Call SetUIElement(5,"N/A")
end if
Call Disable 'user can't change anything!
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
End Sub
Sub Plugin_Terminate
End Sub